home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-08-22 | 935 b | 34 lines | [TEXT/CWIE] |
- // Release Version: $ ODF 2 $
- // Copyright: (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
-
- #ifndef FRAME_H
- #define FRAME_H
-
- //=======================================================================
- // ----- Framework Includes -----
- #ifndef FWFRAME_H
- #include <FWFrame.h> // FW_CFrame
- #endif
-
- //=======================================================================
- class CSamplePart;
-
- //=======================================================================
- class CSampleFrame : public FW_CFrame {
- public:
- FW_DECLARE_AUTO(CSampleFrame)
- CSampleFrame(Environment* ev,
- ODFrame* odFrame,
- FW_CPresentation* presentation,
- CSamplePart* samplePart);
- virtual ~CSampleFrame();
- protected:
- // overrides
- virtual void Draw(Environment* ev,
- ODFacet* odFacet,
- ODShape* invalidShape);
- };
-
- //=======================================================================
- #endif
-